1 00:00:00,420 --> 00:00:05,790 If you want to be able to save game data in between games, you're going to need something called a 2 00:00:05,790 --> 00:00:06,630 data store. 3 00:00:06,660 --> 00:00:13,560 A data store allows you to save things like points, kills, death, treasure, even your location where 4 00:00:13,560 --> 00:00:14,550 you left off. 5 00:00:14,550 --> 00:00:19,610 And if you want to implement daily rewards in your game, you need a data store. 6 00:00:19,620 --> 00:00:23,780 If you want to have a daily streak, you need a data store. 7 00:00:23,790 --> 00:00:30,900 So if I turn this game off right now with 310 points, two kills, eight deaths, What's going to happen 8 00:00:30,900 --> 00:00:31,890 when I come back? 9 00:00:33,690 --> 00:00:34,770 Let's see. 10 00:00:35,010 --> 00:00:36,210 Let's hit the play. 11 00:00:39,900 --> 00:00:41,440 All my stuff is there. 12 00:00:41,460 --> 00:00:42,910 That's because I have a data store. 13 00:00:42,930 --> 00:00:45,510 I did not save the speed and the jump, though. 14 00:00:45,510 --> 00:00:46,950 You need to find another coin. 15 00:00:46,950 --> 00:00:49,230 But that's just the way I decided to do it. 16 00:00:49,230 --> 00:00:51,480 Let's go ahead and get started with that.